home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000096_news@columbia.edu _Mon Feb 26 10:01:59 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id KAA19344 for <kermit.misc@watsun>; Mon, 26 Feb 1996 10:01:58 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id KAA22710 for kermit.misc@watsun; Mon, 26 Feb 1996 10:01:56 -0500 (EST)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Path: news.columbia.edu!sol.ctr.columbia.edu!news.uoregon.edu!news.emf.net!overload.lbl.gov!agate!howland.reston.ans.net!ix.netcom.com!netcom.com!wpfulmor
  6. From: wpfulmor@netcom.com (william p fulmor)
  7. Subject: Re: Multiple Tabs in Macros???
  8. Message-ID: <wpfulmorDnDCDy.6u8@netcom.com>
  9. Organization: NETCOM On-line Communication Services (408 261-4700 guest)
  10. References: <4glesa$lqq@uwm.edu> <4gnanl$gqa@apakabar.cc.columbia.edu>
  11. Date: Mon, 26 Feb 1996 05:53:57 GMT
  12. Lines: 29
  13. Sender: wpfulmor@netcom10.netcom.com
  14.  
  15. fdc@watsun.cc.columbia.edu (Frank da Cruz) writes:
  16.  
  17. >In article <4glesa$lqq@uwm.edu>,
  18. >Harmon F Seaver <hseaver@alpha1.csd.uwm.edu> wrote:
  19. >: Is there some sort of line length limit for macros in Kermit?
  20. >: 
  21. >There is, in general, no limit on the length of a macro definition, but
  22. >there *is* a limit on the length of a command: the DEFINE command that
  23. >defines the macro can only be so long.  The maximum length depends on the
  24. >exact version of Kermit you are talking about, and is probably somewhere
  25. >between 256 bytes and 4096 bytes.
  26.  
  27. >If you need to define a macro that is longer than the command buffer,
  28. >define several macros, and then a "super macro" that executes them in
  29. >sequence.  Example:
  30.  
  31. >  define part1 blah, blah, blah, ...
  32. >  define part1 blah, blah, blah, ...
  33. >  ...
  34. >  define partn blah, blah, blah, ...
  35. >  define bigmacro part1, part2, part3, ..., partn
  36.  
  37. [...]
  38.  
  39. >- Frank
  40.  
  41. Ah, so.  Is there a similar restriction/work around on the length of variables?  
  42. Bill
  43.